home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d2 / pcwiz01.arc / CHKDSK.INS < prev    next >
Text File  |  1991-08-22  |  3KB  |  73 lines

  1. CHKDSK    Used to determine information on the amount
  2.           of disk space and memory usage/availability,
  3.           as well as a diagnostic and correctional tool
  4.           for resolving errors in the system's file
  5.           allocation table (FAT).
  6.  
  7. Format:   CHKDSK [FileSpec] [/F][/V]
  8.  
  9.   /F  allows errors found in the FAT to be corrected.
  10.  
  11.   /V  displays VERBOSE listing of all FILES and their
  12.       PATHS.
  13.  
  14. Example:             CHKDSK
  15.  
  16.    Performs a check of the ENTIRE disk on the CURRENT
  17.    drive and reports any error(s) detected and displays
  18.    status report on disk and memory usage/availability.
  19.    (Will NOT make corrections for FAT errors detected.)
  20.  
  21. Example:            CHKDSK /F
  22.  
  23.    Same as the above, except that if errors are found
  24.    will ask if you want the corrupted FAT data to be
  25.    converted to files which will free-up space on the
  26.    disk. (Under MOST circumstances, it is advisable to
  27.    answer [Y]es and be content to have the corrupted
  28.    data placed in a file in order to resolve the error
  29.    existing in the FAT. This data will be placed in
  30.    file(s) named FILE0000.CHK, FILE0001.CHK, ect. and
  31.    can be accessed using a word processing program or
  32.    viewed on screen using the TYPE command. If you
  33.    determine that the data is useless in its current
  34.    state it can be deleted using the DEL command or
  35.    you can reconstruct it using your word processor
  36.    or the DOS line editor, EDLIN.)
  37. Example:            CHKDSK *.*
  38.  
  39.    Same as using CHKDSK without parameters, except it
  40.    also provides a report of files that are stored in
  41.    non-contiguous clusters on the disk. If there are
  42.    a large number of non-contiguous clusters reported
  43.    and you notice a decrease in the system's speed and
  44.    performance, you can eliminate this condition by
  45.    using a de-fragmenting or "disk optimizing" program
  46.    such as Norton Utilities' SPEED DISK.
  47.  
  48. Example:         CHKDSK /V >LPT1
  49.  
  50.    In addition to the normal information that is
  51.    provided by the CHKDSK command, the /V switch will
  52.    provide a detailed listing of ALL files that are
  53.    contained on the ENTIRE disk drive according to the
  54.    subdirectory in which they are filed. Each file
  55.    will also include the directory path that is a part
  56.    of its name (e.g., \123\DATA\BUDGET.WK1) which is
  57.    never reported in a normal directory listing using
  58.    the DIR command. Since this listing will normally
  59.    be quite large and will scroll by rapidly on your
  60.    monitor screen, you can have it REDIRECTED to your
  61.    lpt1 printer by including the >LPT1 parameter.
  62.  
  63. Example:         CHKDSK /V >DIR.LST
  64.  
  65.    Same as above, except the listing information will
  66.    be placed in a text file named DIR.LST and filed
  67.    in the CURRENT directory. This file can later be
  68.    printed by using the COPY or PRINT command or can
  69.    be viewed on the screen using the TYPE command or
  70.    your word processor. (When using the TYPE command
  71.    include the pipe |MORE after the command to stop
  72.    the on-screen scrolling.)
  73.